/* ==========================================
   1. BASE RESET & VARS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    --primary-orange: #f27508;
    --primary-hover: #d95316;
    --bg-dark: #030337;
    --bg-card: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-lg: 16px;
    --radius-md: 10px;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

img, video, svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sub-heading {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.site-header {
    width: 100%;
    background: #ffffff;
    padding: 12px 6%; 
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: transparent;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    z-index: 101;
}

.header-logo-img {
    height: 38px; 
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-size: 16px; 
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 9px; 
    color: #888888;
    text-transform: uppercase;
    margin-top: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a, .btn-book-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden; 
    border-radius: 30px; 
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-text {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.link-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    aspect-ratio: 1 / 1;
    background: #f27508;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.hover-target:hover .link-bg {
    transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
    color: #ffffff; 
}

.btn-book-call {
    width: auto;
    min-width: 140px; 
    height: 40px;     
    padding: 0 20px;
    border: 2px solid #ff6a00;
    background: transparent;
    color: #111111;
    font-weight: 700;
    font-size: 14px;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   3. BUTTON STYLES
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #ffffff;
    border-color: #cbd5e1;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #030337;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    text-align: center;
}

.btn-dark:hover {
    background-color: #1e293b;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.hero-section {
    padding: 130px 0 60px 0;
    background: radial-gradient(circle at top left, #fff1eb 0%, #ffffff 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #fce7f3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.hero-left h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-left h1 .highlight {
    color: var(--primary-orange);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-partners {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.hero-right {
    position: relative;
}

.dashboard-wrapper {
    position: relative;
    background: #030337;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: floatingHero 5s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px -15px rgba(242, 101, 34, 0.3);
}

@keyframes floatingHero {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.float-badge {
    position: absolute;
    background: var(--primary-orange);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-6px) rotate(1deg); }
}

.badge-top-left {
    top: -20px;
    left: -20px;
    display: flex;
    flex-direction: column;
}

.badge-val {
    font-size: 1.3rem;
    line-height: 1;
}

.badge-lbl {
    font-size: 0.65rem;
    opacity: 0.9;
}

.badge-live {
    top: 10px;
    right: 20px;
    background: #1e293b;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseGreen 1.6s infinite;
}

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.badge-bottom-left {
    bottom: -15px;
    left: -15px;
}

.dashboard-card {
    background: #030337;
    border-radius: 12px;
    padding: 16px;
    color: #fff;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #8b949e;
    margin-bottom: 16px;
    font-weight: 700;
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.chart-box {
    background: #0f172a;
    padding: 12px;
    border-radius: 8px;
}

.chart-lbl {
    font-size: 0.65rem;
    color: #8b949e;
    display: block;
}

.chart-val {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 4px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.chart-bars span {
    flex: 1;
    background: #38bdf8;
    border-radius: 2px;
    transition: height 0.6s ease, background-color 0.3s ease;
}

.chart-bars span:hover {
    background-color: var(--primary-orange);
}

.donut-placeholder {
    width: 40px;
    height: 40px;
    border: 4px solid #38bdf8;
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    margin: 8px auto 0 auto;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.m-card {
    background: #0f172a;
    padding: 10px;
    border-radius: 8px;
}

.m-title {
    display: block;
    font-size: 0.65rem;
    color: #8b949e;
}

.m-val {
    font-size: 0.9rem;
    font-weight: 700;
}

.m-badge-up {
    font-size: 0.65rem;
    color: #22c55e;
}

.m-badge-dn {
    font-size: 0.65rem;
    color: #ef4444;
}

.highlighted-m-card {
    background: #1e293b;
    border: 1px solid var(--primary-orange);
}

.m-val-lg {
    font-size: 1.4rem;
    font-weight: 800;
    color: #22c55e;
}

/* ==========================================
   5. TICKER BAR
   ========================================== */
.ticker-wrapper {
    background: var(--primary-orange);
    color: #ffffff;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.ticker-track span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-right: 32px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   6. STATS SECTION
   ========================================== */
.stats-section {
    background: #030337;
    padding: 50px 0;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 600;
}

/* ==========================================
   7. PLATFORMS SECTION
   ========================================== */
.platform-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.section-center h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
}

.tab-content {
    display: none;
    transition: opacity 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

.platform-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.platform-features h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: var(--primary-orange);
    font-weight: 900;
}

.visual-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.visual-img-placeholder {
    height: 120px;
    background: linear-gradient(135deg, #1e293b, #030337);
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.tag {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.metric-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.val-big {
    font-size: 1.1rem;
    font-weight: 800;
}

.badge-green {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.badge-orange {
    background: #ffedd5;
    color: #c2410c;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.disclaimer {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ==========================================
   8. BANNER PROOF
   ========================================== */
.banner-proof {
    position: relative;
    padding: 100px 24px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.85);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.year-badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--primary-orange);
}

.banner-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 16px 0 32px 0;
}

/* ==========================================
   9. PROCESS & WHY CHOOSE US
   ========================================== */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #cbd5e1;
    display: block;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Why Choose Us */
.why-us-section {
    padding: 80px 0;
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Strip */
.cta-strip {
    background: var(--primary-orange);
    color: #fff;
    padding: 40px 0;
}

.cta-strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.strip-pill {
    font-size: 0.7rem;
    font-weight: 800;
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 4px;
}

.cta-strip h2 {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 800;
    margin-top: 6px;
}

/* ==========================================
   10. AUDIT FORM SECTION
   ========================================== */
.form-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-left-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.form-left-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-checklist {
    list-style: none;
    margin-bottom: 32px;
}

.form-checklist li {
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-orange {
    color: var(--primary-orange);
}

.single-image-box {
    width: 100%;
    max-width: 100%;
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 25px;
}

.single-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form-right-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-right-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-orange);
}

.form-footer-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* ==========================================
   11. FOOTER
   ========================================== */
.main-footer {
    background-color: #030337;
    color: #ffffff;
    padding: 80px 6% 30px 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    clear: both;
    z-index: 5;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    text-align: left;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px; 
    color: #f27508;
}

.footer-column ul {
    list-style-type: none;
}

.footer-column ul li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #cccccc;
}

.footer-column ul li a {
    color: #cccccc; 
    text-decoration: none; 
    transition: color 0.2s ease-in-out; 
}

.footer-column ul li a:hover { color: #f27508; }

.location-bold-title {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand-column {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 260px;
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand-subtitle {
    font-size: 14px;
    font-weight: 800;
    color: #f27508;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 13px;
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }

.why-card:nth-child(1) { transition-delay: 0.1s; }
.why-card:nth-child(2) { transition-delay: 0.2s; }
.why-card:nth-child(3) { transition-delay: 0.3s; }
.why-card:nth-child(4) { transition-delay: 0.4s; }
.why-card:nth-child(5) { transition-delay: 0.5s; }
.why-card:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================
   12. MEDIA QUERIES (TABLETS & PHONES)
   ========================================== */

/* Tablets & Small Laptops (Max Width: 992px) */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #030337;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px 20px;
        transition: right 0.3s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-links a {
        color: #ffffff;
        font-size: 18px;
    }

    .btn-book-call {
        color: #ffffff;
        border-color: var(--primary-orange);
    }

    .hero-grid,
    .platform-card-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand-column {
        justify-content: flex-start;
        width: 100%;
        min-width: auto;
    }

    .footer-logo-box {
        align-items: flex-start;
        text-align: left;
    }

    .footer-logo-text {
        align-items: flex-start;
    }
}

/* Mobile Phones (Max Width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .site-header {
        padding: 12px 16px;
    }

    .hero-section {
        padding-top: 110px;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary, .btn-dark {
        width: 100%;
    }

    .badge-top-left {
        top: -15px;
        left: -5px;
    }

    .badge-bottom-left {
        bottom: -15px;
        left: -5px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-cards-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip-flex {
        flex-direction: column;
        text-align: center;
    }

    .platform-card-grid {
        padding: 20px;
    }

    .form-right-card {
        padding: 24px;
    }

    .chart-container {
        grid-template-columns: 1fr;
    }
}

/* Small Phones (Max Width: 480px) */
@media (max-width: 480px) {
    .metrics-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .banner-proof {
        padding: 60px 16px;
    }
}